home *** CD-ROM | disk | FTP | other *** search
- set brokenLinkDlogText to "To automatically link to the webyou must have a default browser selected in Internet Config."
- set webBrowserWarning to "Would you like to open your Web browser and connect to the Internet?"
- set continueBtn to "Continue"
- set cancelBtn to "Cancel"
-
- tell application "Finder"
- activate
- display dialog webBrowserWarning buttons {cancelBtn, continueBtn} default button 2
- set launchbrowser to button returned of result
- if launchbrowser is "Continue" then
- try
- open location "www.ACDSystems.com"
- on error
- beep
- display dialog brokenLinkDlogText(cancelBtn) default button 1
- end try
- else
- return
- end if
- end tell